From: Keir Fraser Date: Thu, 16 Dec 2010 20:06:36 +0000 (+0000) Subject: vtd: Clean up a recent printk message. X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22?a=commitdiff_plain;h=3b2ddb02d6dc8e97691ebb53d1888a0844eaae07;p=xen.git vtd: Clean up a recent printk message. Signed-off-by: Keir Fraser --- diff --git a/xen/drivers/passthrough/vtd/iommu.c b/xen/drivers/passthrough/vtd/iommu.c index 3bf4febf96..3bf7b9f384 100644 --- a/xen/drivers/passthrough/vtd/iommu.c +++ b/xen/drivers/passthrough/vtd/iommu.c @@ -2053,9 +2053,9 @@ static int init_vtd_hw(void) if ( !sharept ) iommu_hap_pt_share = FALSE; - gdprintk(XENLOG_INFO VTDPREFIX, - "VT-d page table %s with EPT table\n", - iommu_hap_pt_share ? "shares" : "not shares"); + dprintk(XENLOG_INFO VTDPREFIX, + "VT-d page table %sshared with EPT table\n", + iommu_hap_pt_share ? "" : "not "); return 0; }